Prisma ClientのFiltering
PrismaにはLIKE句がない
たぶんmrsekut.icon
代わりにこのFileringを使う
orとかand
code:ts
const users = await prisma.user.findMany({
where: {
OR: [
{
name: {
startsWith: 'E',
},
},
{
AND: {
profileViews: {
gt: 0,
},
role: {
equals: 'ADMIN',
},
},
},
],
},
})
Filter conditions and operators
equals
not
in
notIn
lt
lte
gt
gte
contains
search
mode
startsWith
endsWith
AND
OR
NOT
Relation filters
some
every
none
is
isNot